net/http.http2clientStream.ID (field)

17 uses

	net/http (current package)
		h2_bundle.go#L7029: 	ID            uint32
		h2_bundle.go#L8093: 	err = cc.writeHeaders(cs.ID, endStream, int(cc.maxFrameSize), hdrs)
		h2_bundle.go#L8105: 	if cs.ID == 0 {
		h2_bundle.go#L8137: 					cc.writeStreamReset(cs.ID, se.Code, err)
		h2_bundle.go#L8140: 				cc.writeStreamReset(cs.ID, http2ErrCodeCancel, err)
		h2_bundle.go#L8146: 			cc.writeStreamReset(cs.ID, http2ErrCodeNo, nil)
		h2_bundle.go#L8150: 	if cs.ID != 0 {
		h2_bundle.go#L8151: 		cc.forgetStreamID(cs.ID)
		h2_bundle.go#L8323: 			err = cc.fr.WriteData(cs.ID, sentEnd, data)
		h2_bundle.go#L8371: 		err = cc.writeHeaders(cs.ID, true, maxFrameSize, trls)
		h2_bundle.go#L8373: 		err = cc.fr.WriteData(cs.ID, true, nil)
		h2_bundle.go#L8665: 	cs.ID = cc.nextStreamID
		h2_bundle.go#L8667: 	cc.streams[cs.ID] = cs
		h2_bundle.go#L8668: 	if cs.ID == 0 {
		h2_bundle.go#L9147: 			cc.fr.WriteWindowUpdate(cs.ID, http2mustUint31(streamAdd))
		h2_bundle.go#L9290: 				cc.fr.WriteWindowUpdate(cs.ID, uint32(refund))
		h2_bundle.go#L9474: 	serr := http2streamError(cs.ID, f.ErrCode)